type runtime.gcBits

12 uses

	runtime (current package)
		mheap.go#L471: 	allocBits  *gcBits
		mheap.go#L472: 	gcmarkBits *gcBits
		mheap.go#L473: 	pinnerBits *gcBits // bitmap for pinned objects; accessed atomically
		mheap.go#L2083: type gcBits struct {
		mheap.go#L2089: func (b *gcBits) bytep(n uintptr) *uint8 {
		mheap.go#L2095: func (b *gcBits) bitp(n uintptr) (bytep *uint8, mask uint8) {
		mheap.go#L2112: 	bits [gcBitsChunkBytes - gcBitsHeaderBytes]gcBits
		mheap.go#L2125: func (b *gcBitsArena) tryAlloc(bytes uintptr) *gcBits {
		mheap.go#L2141: func newMarkBits(nelems uintptr) *gcBits {
		mheap.go#L2197: func newAllocBits(nelems uintptr) *gcBits {
		pinner.go#L255: type pinnerBits gcBits
		pinner.go#L262: 	bytep, mask := (*gcBits)(p).bitp(n * 2)